home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / SODICK.E4 < prev    next >
Text File  |  1996-04-01  |  3KB  |  96 lines

  1. name Sodick EDM 4 Axis
  2.  
  3. : >4
  4. N 4
  5. G 2
  6. g 2 G
  7. X ->3.>4
  8. Y ->3.>4
  9. I ->3.>4
  10. J ->3.>4
  11. K ->3.>4
  12. L ->3.>4
  13. U ->3.>5 IncFrom X
  14. V ->3.>5 IncFrom Y
  15. A >3.>4
  16. Q >4
  17. R ->3.>4
  18. P 4
  19. F >3.>2
  20. H >4
  21. D >2
  22. T 2
  23. M 2
  24. S >4
  25. C 3
  26.  
  27. ModalGs 0 1 2 3                       # List of g codes that are modal    
  28.  
  29. Sequence#s N 1 5 5                    # Char, freq, incr & start          
  30. First#? N                             # Y or N  'Output 1st sequence no.  
  31. Last#? N                              # Y or N  'Output last sequence no. 
  32.  
  33. HCode X U                              # X or X U  'Horizontal char.       
  34. VCode Y V                              # Y or Y V  'Vertical char.         
  35. Feedcode F                            # Feed rate char.                   
  36. Comment '                             # Begin End comment char.           
  37.  
  38. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  39. Coolant 17 27 17                      # On, Off & Mist m codes            
  40. DComp 41 42 40                        # Left, Right & Cancel m codes      
  41. LComp 43 49                           # On & Off codes                    
  42.  
  43. Feed G1                             # Linear move                       
  44. Rapid G0                            # Rapid positioning word            
  45. Cw G2                               # Circular move clockwise           
  46. Ccw G3                              # Circular move counter clockwise   
  47.  
  48. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  49.  
  50. Spaces? Y                             # Y or N  'Spaces between words     
  51.  
  52. Incremental? N                        # Y or N  'Inc or abs output        
  53. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  54. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  55. CtrCode I J K L
  56. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  57.  
  58. MaxRad 999 .0005                      # Chordal breakdown value
  59. ArcWithSame? N                        # Support XY/UV arc records
  60. ArcWithLine? N                        # Support UV arc records
  61.  
  62. StartCode                             # Start of the program              
  63. :[Program#]
  64. G90
  65. End
  66.  
  67. 1stToolChange                         # First tool change                 
  68. G[Work]
  69. G92 X0 Y0
  70. C207
  71. G40 H0
  72. G50 A0
  73. End
  74.  
  75. Infeed                                # Enable cutter comp                
  76. G[Side] X[H] Y[V] U[H2] V[V2]
  77. end
  78.  
  79. Outfeed                               # Disable cutter comp               
  80. G40 G50 G1 X[H] Y[V]
  81. end
  82.  
  83. ToolChange                            # Secondary tool changes            
  84. g91 M5
  85. T90
  86. M00
  87. G90
  88. G0 X[H] Y[V]
  89. M00
  90. End
  91.  
  92. EndCode                               # End of the program                
  93. M2
  94. M99
  95. End
  96.